home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / select / Makefile next >
Makefile  |  1989-12-17  |  157b  |  16 lines

  1. #
  2.  
  3. CFLAGS    = -O
  4. MYLIB    = ../libnet.a
  5.  
  6. all:    timer
  7.  
  8. #
  9.  
  10. timer:    timer.o $(MYLIB)
  11.     cc $(CFLAGS) -o $@ timer.o $(MYLIB)
  12.  
  13. #
  14. clean:
  15.     rm -f *.o *.out temp.* core timer
  16.